home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / t_os / tie / src / oaklib.h < prev    next >
Text File  |  1991-10-18  |  416b  |  15 lines

  1. /*
  2.         OAK Lib
  3.  
  4.         make 1990.05.04 YAMA
  5. */
  6.  
  7. #define iskanji(c)   ((0x81 <= c && c <= 0x9f) || (0xe0 <= c && c <= 0xfc))
  8. #define iskanji2(c)  ((0x40 <= c && c <= 0x7e) || (0x80 <= c && c <= 0xfc))
  9.  
  10.  
  11. int     KAN_open( void (*putstr)(), void (*putsys)(), void (*putmode)() ) ;
  12. int     KAN_close( void ) ;
  13. int     KAN_read( int sw, unsigned *enc ) ;
  14. int     KAN_touroku( int len, char *tango ) ;
  15.